Filter hook 'manage_{$this->screen->taxonomy}_custom_column'

in WP Core File wp-admin/includes/class-wp-terms-list-table.php at line 669

Description

Filters the displayed columns in the terms list table. The dynamic portion of the hook name, `$this->screen->taxonomy`, refers to the slug of the current taxonomy. Possible hook names include: - `manage_category_custom_column` - `manage_post_tag_custom_column`

Occurrences

Filename Line Number
wp-admin/includes/class-wp-terms-list-table.php 669

Parameters

Type Name Description
string $string Custom column output. Default empty.
string $column_name Name of the column.
int $term_id Term ID.

PHP Doc

/**
		 * Filters the displayed columns in the terms list table.
		 *
		 * The dynamic portion of the hook name, `$this->screen->taxonomy`,
		 * refers to the slug of the current taxonomy.
		 *
		 * Possible hook names include:
		 *
		 *  - `manage_category_custom_column`
		 *  - `manage_post_tag_custom_column`
		 *
		 * @since 2.8.0
		 *
		 * @param string $string      Custom column output. Default empty.
		 * @param string $column_name Name of the column.
		 * @param int    $term_id     Term ID.
		 */